De Android SDK installeren
Android Studio
De Android Studio downloaden is de eenvoudigste manier om de Android SDK te installeren. De Android Studio is de officiële Android IDE (Integrated Development Environment) van Google en JetBrains. Om Android-applicaties te maken met cross-platform tools zoals Cordova, Ionic of React Native, is Android Studio alles wat je nodig hebt.
Voer het gedownloade bestand uit. Zorg ervoor dat je ook de “Intel x86 Emulator Accelerator (HAXM installer)” selecteert om te installeren.
Als je de standaard locatie hebt behouden wordt de Android Studio geïnstalleerd in:
C:\Program Files\Android\Android Studio
Nadat de installatie voltooid is moet je het pad naar de adb server aan de systeemvariabele Path
toevoegen. Om de adb (Android Debug Bridge) server van uit elke map te kunnen starten moet je volgende paden aan de Path
systeemvariable toevoegen:
C:\Users\Home\AppData\Local\Android\sdk\platform-tools
en:
C:\Users\Home\AppData\Local\Android\sdk\tools
Daarbij vervang je \Home\
door je eigen gebruikersnaam.
Definition - What does Android Debug Bridge (ADB) mean?The Android Debug Bridge (ADB) is a client-server program used in Android application development. The Android Debug-Bridge is part of the Android SDK and is made up of three components: a client, a daemon, and a server. It is used to manage either an emulator instance or an actual Android device. (http://www.techopedia.com/definition/24219/android-debug-bridge-adb)
De systeemvariable Path
instellen
- Open de Verkenner
- Klik op Deze pc
- Rechter muis
- Eigenschappen
- Geavanceerde systeeminstellingen
- Omgevingsvariabelen
De ANT_HOME gebruikersvariabele instellen
Stel de ANT_HOME gebruikersvariable in op de map waarin Ant geïnstalleerd is.
C:\Program Files (x86)\Android\android-studio\lib\ant
of
C:\Program Files\Android\Android Studio\lib\ant
Verifiëren wat er al geïnstalleerd is
In de Windows command console typ:
cordova requirements
En dat krijg je hetvolgde te zien:
De vereisten voor IOS en Windows zijn nog niet geïnstalleerd. Maar die hebben we voorlopig niet nodig.
Bronnen
Donald Dragoti, Quick Tip: Installing the Android SDK, March 01, 2016
Onder ondertitel
Paragraaf